home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / programer2 / icon / Source / Icont / H / Lfile < prev    next >
Encoding:
Text File  |  1990-07-20  |  248 b   |  11 lines

  1. /*
  2.  * A linked list of files named by link declarations is maintained using
  3.  *  lfile structures.
  4.  */
  5. struct lfile {
  6.    char *lf_name;        /* name of the file */
  7.    struct lfile *lf_link;    /* pointer to next file */
  8.    };
  9.  
  10. extern struct lfile *lfiles;
  11.